:root {
    --main-color: #54372a;
    --second-color: #EBCC90;
    --third-color: #ff5100;
    --text-color: #060413;
    --fourth-color: #969696;
    --container-color: #f8e4be;
    --bg-color: #f9f6f2;
    --text-alter-color: #e6d4c3;
    --font-family-2: 'Roboto', sans-serif;
    --poppins-font: 'Poppins', sans-serif;
    --box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px 0.10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
    font-family: var(--font-family-2);
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 0.8rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--text-color);
    border-radius: 1rem;
}

body {
    color: var(--text-color);
    background: var(--bg-color);
}

a {
    text-decoration: none;
    color: white;
}

img {
    width: 100%;
}

.container{
    max-width: 1060px;
    margin: auto;
    width: 100%;
}

header{
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 100;
    transform: scale(0.9);
}
.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #36566c;
    padding: 20px 30px;
    border-radius: 2rem;
    box-shadow: 2px 3px 6px 0 #706f6f;
}
.logo{
    height: 45px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar {
    display: flex;
    align-items: right;
    column-gap: 1.5rem;
}

.navbar .nav-link::after{
    content: '';
    width: 0%;
    height: 2px;
    background: var(--second-color);
    display: block;
    margin: auto;
    transition: 0.5s;
}

.navbar .nav-link:hover::after{
    width: 100%;
}
.nav-link{
    color: #fff;
    font-family: var(--poppins-font);
    font-size: 1rem;
    transition: 0.4s all cubic-bezier(0.080, 0.83, 0.170, 1);
}
.nav-link:hover{
    color: var(--second-color);
    transition: 1s all cubic-bezier(0.080, 0.83, 0.170, 1);
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    color: #36566c;
    text-transform: uppercase;
    font-size: 60px;
    border-bottom: 3px solid #36566c;
    display: inline-block;
    margin-bottom: 20px;
}

.subtitle {
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 1rem;
    text-indent: 0;
}

p {
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 20px;
    text-indent: 20px;
}

.about-us {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 90%;
    padding: 50px 20px;
}

.text-content {
    flex: 1;
    padding: 20px;
    max-width: 50%;
}

.btn {
    display: inline-block;
    background-color: #36566c;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn:hover {
    background-color: #758694;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #333;
    font-size: 30px;
    transition: color 0.3s ease;
    margin-right: 10px;
}

.social-icons a:hover {
    color: #36566c;
}

.image-content {
    flex: 1;
    text-align: center;
    max-width: 50%;
}

.image-content img {
    max-width: 80%;
    height: auto;
    padding: 10px;
}

/* Pop-up container */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    margin-top: 90px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 60%;
    max-width: 800px;
    box-shadow: var(--box-shadow);
    font-family: var(--poppins-font);
    line-height: 1.6;
}

.popup-content h2 {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 0px;
    font-size: 24px;
    color: red;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .nav-container {
        flex-direction:column;
    }

    .nav-link {
        display: block;
        margin-bottom: 2px;
        margin-top: 5px;
    }

    .about-us {
        flex-direction: column;
    }

    .popup-content {
        width: 90%;
        padding: 15px;
    }
    .close-btn {
        padding-top: 50px;
        padding-right: 20px;
    }
    .btn {
        font-size: 16px;
        padding: 8px 16px;
    }
    h1 {
        font-size: 40px;
        margin-bottom: 0;
    }
    p {
        font-size: 16px;
    }
    .text-content{
        margin-top: 40px;
        max-width: 100%;
        text-align: left;
    }
    .image-content{
        display: none;
    }
    .popup-content{
        margin-top: 230px;
        margin-bottom: 90px;
    }

    .close-btn {
        position: absolute;
        top: 50px;
        left: 0px;
        font-size: 24px;
        color: red;
        cursor: pointer;
    }
}
